home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 96 / Amiga News 96.iso / amig_ad_os / laurent_faillie / lfcinter / exemples / atoi.x < prev    next >
Text File  |  1977-12-31  |  405b  |  19 lines

  1. /*  Atoi.x
  2.  *
  3.  *      Exemple d'utilisation de la fonction atoi(): Lecture d'un entier.
  4.  *      Montre aussi comment palier au manque du scanf() dans la version 1.0
  5.  *      de l'interpréteur...
  6.  */
  7.  
  8.  
  9. int main(int ac, char **av){
  10.     char x[256]; // Définition du buffer
  11.  
  12.     printf("Entrez un chiffre :");
  13.     flushstdout();
  14.     gets(x);
  15.  
  16.     printf("-> %s : %d\n",x,atoi(x)); // Résultat
  17.  
  18.     return 0;
  19. }